home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-12-02 | 715 b | 37 lines | [TEXT/MPS ] |
- ; File: HyperXCmd.a
- ;
- ; Copyright: © 1983-1993 by Apple Computer, Inc.
- ; All rights reserved.
- ;
- ; Version: System 7.1 for ETO #11
- ; Created: Tuesday, March 30, 1993 18:00
- ;
- ;___________________________________________________________________________
-
- IF &TYPE('__INCLUDINGHYPERXCMD__') = 'UNDEFINED' THEN
- __INCLUDINGHYPERXCMD__ SET 1
-
- ; result codes
-
-
- xresSucc EQU 0
- xresFail EQU 1
- xresNotImp EQU 2
-
- ; XCmdBlock Record
-
- XCmdBlock RECORD 0
- paramCount DS.W 1
- params DS.L 16
- returnValue DS.L 1
- passFlag DS.B 1
- DS.B 1
- entryPoint DS.L 1
- request DS.W 1
- result DS.W 1
- inArgs DS.L 8
- outArgs DS.L 4
- xCmdBlockEnd EQU *
- ENDR
-
- ENDIF ; ...already included